Next:
D) Explicit Instance(Stack)
, Previous:
E) Variable Parameter Template
, Up:
Index
D) Initialization
class
widget
{
int
a
(
0
)
;
// error
int
b
{
0
}
;
int
c
=
0
;
}
;
//
복
사
가
불
가
능
한
class
는
할
당
연
산
자
(=)
사
용
불
가
능
std
::
atomic
<
int
>
a
{
0
}
;
std
::
atomic
<
int
>
b
(
0
)
;
std
::
atomic
<
int
>
c
=
0
;
// error
double
a
=
0.7f
;
int
b
{
a
}
;
// error
암
시
적
타
입
변
환
불
가
능